home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / novell / inc / hscb.h < prev    next >
C/C++ Source or Header  |  1996-07-10  |  723b  |  17 lines

  1. /*******************************************************
  2.  *           HSCB - HALF-SESSION CONTROL BLOCK         *
  3.  *******************************************************/
  4. struct hscb {
  5.  struct hscb *next;         /* pointer to next hscb             */
  6.  struct nau *naup;          /* pointer to nau                   */
  7.  char hslunam[8];           /* lu name                          */
  8.  char hsnodnam[8];          /* lu node name                     */
  9.  unsigned long cor;         /* session cor                      */
  10.  unsigned char part_net_ad[6]; /* Novell partner's network address */
  11.  unsigned char flag;        /* active flag for Novell network    */
  12.   };
  13.  #define ACTIVE  0x01
  14.  #define NACTIVE 0
  15.  
  16.  
  17.